/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    background-color: rgb(83, 157, 171);
    direction: ltr;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}

.nav-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: relative;
}

.menu-toggle{
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.nav-menu{
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link{
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

@media (max-width: 768px){
  .menu-toggle{
    display: block;
  }

  .nav-menu{
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    padding: 15px;
    z-index: 2001;
  }

  .nav-menu.active{
    display: flex;
  }

  .nav-link{
    padding: 12px 0;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}



.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
  
}

.logo {
    display: flex;
    align-items: center;
    color: rgb(238, 235, 235);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    margin-left: 10px;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
   
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e3dce4;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-btn, .cart-btn, .user-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: rgb(75, 161, 134);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.search-btn:hover, .cart-btn:hover, .user-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}


























.logo-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.pasta-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 9px;
}

.hamberger-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 9px;
}

.kabab {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 9px;
}

.drink {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 9px;
}

.salad {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 9px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
    display: flex;
      justify-content: center;
    align-items: center;
    
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(209, 55, 55, 0.3);
}




.highlight-line {

    background: linear-gradient(90deg, #ffd54f);
    padding: 3px 6px;
    border-radius: 5px;

}


.highlight {

    background: linear-gradient(90deg, #71a69a);
    padding: 3px 6px;
    border-radius: 5px;


}


.highligh {

    background: linear-gradient(90deg, #d3bb31);
    padding: 3px 6px;
    border-radius: 5px;


}



/* Products Section */
.products {
    padding: 80px 0;
    background: #29988d;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    margin-left: 0.5rem;
}

.add-to-cart {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.add-to-cart:hover {
    background: #5a6fd8;
}

/* About Section */
.about {
    padding: 80px 0;
      background: linear-gradient(135deg, #1c8a8c 0%, #20b2aa 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #fffefe;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature {
    text-align: center;
    padding: 1rem;
}

.feature i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.feature h4 {
    font-size: 1rem;
    color: #333;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #667eea;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #5a6fd8;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.8;
}



/* Reviews Section */
.reviews-section {
    margin-top: 2rem;
}

.review-form {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.review-form h4 {
    margin-bottom: 1rem;
    color: #333;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffd700;
}

.review-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    resize: vertical;
    min-height: 100px;
}

.review-submit {
    background: #223eb9;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.review-submit:hover {
    background: #5a6fd8;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-author {
    font-weight: 600;
    color: #333;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.review-text {
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 40px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
} 






.categories {
    padding: 80px 0;
background: linear-gradient(135deg, #1c8a8c 0%, #20b2aa 100%);
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: rgb(32, 99, 86);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f8f9fa;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    margin-left: 0.5rem;
}

.add-to-cart {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.add-to-cart:hover {
    background: #5a6fd8;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #1c8a8c 0%, #20b2aa 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff7f7;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #fffdfd;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature {
    text-align: center;
    padding: 1rem;
}

.feature i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.feature h4 {
    font-size: 1rem;
    color: #333;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}













/* --- Mobile Menu --- */

.menu-toggle{
display:none;
background:none;
border:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* موبایل */
@media (max-width:768px){

.menu-toggle{
display:block;
}

.nav-menu{
display:none;
flex-direction:column;
background:#57a98d;
position:absolute;
top:60px;
left:0;
width:100%;
padding:20px;
z-index:1001;
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

.nav-menu.active{
display:flex;
}

.nav-link{
padding:10px 0;
font-size:18px;
color:white;
text-decoration:none;
border-bottom:1px solid rgba(255,255,255,0.2);
}

.nav-link:last-child{
border-bottom:none;
}

}






.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* این باعث می‌شود فضای خالی بیرون نزند */
    background-color: #181818; /* رنگ فضای خالی */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* جادوی اصلی اینجاست */
    object-fit: contain; 
}



.slider{
    position:absolute;
    width:200%;
    height:200%;
    overflow:hidden;
}

.slides{
    display:flex;
    height:100%;
    transition:transform 2.5s ease-in-out; /* حرکت خیلی نرم */
}

.slides img{
    width:100vw;   /* دقیق اندازه صفحه */
    height:100vh;
    object-fit:cover;
    flex-shrink:0; /* مهم برای جلوگیری از جمع شدن */
}



.map-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
    text-align: center;
}



.map-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #333;
    font-family: 'Cairo', sans-serif;
}

.map-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid #ffffff;
}

.map-container iframe {
    display: block;
    width: 100%;
}








.features{
  display: block;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: nowrap;   /* مهم ✅ */
}

.feature{
  flex: 1;             /* همه به یک اندازه */
  text-align: center;
  padding: 15px;
}


.feature h4{
  font-size: 40px;
  font-weight: 600;
}



.about-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text{
  flex: 1;
}

.about-video{
  flex: 1;
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-switcher a {
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255,0.15);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.language-switcher a:hover {
    background: white;
    color: black;
}



.slider {
    width: 100%;
    overflow: hidden;
}

.slides img {
    width: 100%;
    height: auto; /* اجازه دهید ارتفاع بر اساس عرض عکس تنظیم شود تا متن داخل عکس دفرمه نشود */
    display: block;
    object-fit: contain; /* برای اینکه کل عکس بنر بدون برش خوردن دیده شود */
}

/* اگر نمی‌خواهید در موبایل خیلی کوچک شود، یک حداقل ارتفاع بدهید */
@media (max-width: 768px) {
    .slides img {
        min-height: 250px;
        object-fit: cover; /* در موبایل کمی زوم می‌شود تا تمام عرض را پر کند */
    }
}







